home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1999 January - Disc 2 / Macworld (1999-01) (Disk 2).dmg / Serious Demos / Symbolic Composer 4.2 / Environment / System / MRAC / Variations / rotate-bc < prev    next >
Text File  |  1998-08-11  |  398b  |  13 lines

  1. rotate-bc count sequence
  2.  
  3. This function enables the generation of a number of symbol patterns emanating from the sequential backward rotation with count of a single pattern.
  4.  
  5. (rotate-bc 5 '(a b c d e f g h i j k l))
  6.  
  7. => ((a b c d e f g h i j k l)
  8.     (l a b c d e f g h i j k)
  9.     (k l a b c d e f g h i j)
  10.     (j k l a b c d e f g h i)
  11.     (i j k l a b c d e f g h)
  12.     (h i j k l a b c d e f g))
  13.